home *** CD-ROM | disk | FTP | other *** search
/ Champak 114 / Vol 114.iso / games / park_thi.swf / scripts / DefineSprite_832 / frame_1 / DoAction.as
Encoding:
Text File  |  2010-08-12  |  195 b   |  12 lines

  1. _root.time = 180;
  2. var timer = 4500;
  3. onEnterFrame = function()
  4. {
  5.    timer--;
  6.    _root.time = Math.round(timer / 25);
  7.    if(timer == 0)
  8.    {
  9.       _root.gotoAndStop("gameOver");
  10.    }
  11. };
  12.